home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Format 1994 October
/
Macformat17.cdr
/
Shareware City
/
Sound
/
juno-librarian-108
/
JUNO Librarian 1.0.8
/
Sample Scripts
/
46 Copy All param to New Window
< prev
next >
Wrap
Text File
|
1994-07-11
|
319b
|
13 lines
tell application "JUNO Librarian"
activate -- if needed
open file "Sample"
New Window 0
repeat with i from 0 to 22
set x to Parameter i of Window "Sample"
set Parameter i of Window 1 to x
end repeat
set x to Text 1 of Window "Sample"
set Text 1 of Window 1 to x
save Window 1 in file "Sample Copy"
end tell